From: aude Date: Mon, 18 Aug 2014 10:51:40 +0000 (+0200) Subject: Rename variable in RequestContext, $t => $title X-Git-Tag: 1.31.0-rc.0~14313^2 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=513ff7975d1ac437490cfe1a875c856c9140f6cb;p=lhc%2Fweb%2Fwiklou.git Rename variable in RequestContext, $t => $title Change-Id: Id416816f1c291fea9b7b97b41290b5078936705b --- diff --git a/includes/context/RequestContext.php b/includes/context/RequestContext.php index 00733d8169..9c8a781cd9 100644 --- a/includes/context/RequestContext.php +++ b/includes/context/RequestContext.php @@ -123,10 +123,10 @@ class RequestContext implements IContextSource { /** * Set the Title object * - * @param Title $t + * @param Title $title */ - public function setTitle( Title $t ) { - $this->title = $t; + public function setTitle( Title $title ) { + $this->title = $title; // Erase the WikiPage so a new one with the new title gets created. $this->wikipage = null; }